FolderUpdateRequestDto

data class FolderUpdateRequestDto(name: String?, color: String?)

Parameters

name

The name for this folder. A user may not have two folders with the same name.

color

Six hex digits representing the color of this folder, e.g. cc0000 or 9b1515.

Constructors

FolderUpdateRequestDto
Link copied to clipboard
fun FolderUpdateRequestDto(name: String? = null, color: String? = null)
The name for this folder.

Properties

color
Link copied to clipboard
@SerializedName(value = color)
val color: String? = null
Six hex digits representing the color of this folder, e.g.
name
Link copied to clipboard
@SerializedName(value = name)
val name: String? = null
The name for this folder.